b0f52332651ecbb8af11557df5af3189c7283212,hbase-client/src/main/java/org/apache/hadoop/hbase/ipc/RpcClientImpl.java,Connection,writeRequest,#Call#number#Span#,914
Before Change
} catch (IOException e) {
// We set the value inside the synchronized block, this way the next in line
// won't even try to write
if (markClosed(e)) {
close();
}
writeException = e;
interrupt();
After Change
} catch (IOException e) {
// We set the value inside the synchronized block, this way the next in line
// won't even try to write
markClosed(e);
close();
writeException = e;
interrupt();
}